home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / ENROLS1.PAK / ENROLDOC.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  47 lines

  1. // EnrolDoc.h : interface of the CEnrollDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5.  
  6. class CEnrollDoc : public CDocument
  7. {
  8. protected: // create from serialization only
  9.     CEnrollDoc();
  10.     DECLARE_DYNCREATE(CEnrollDoc)
  11.  
  12. // Attributes
  13. public:
  14.     CSectionSet m_sectionSet;
  15.  
  16. // Operations
  17. public:
  18.  
  19. // Overrides
  20.     // ClassWizard generated virtual function overrides
  21.     //{{AFX_VIRTUAL(CEnrollDoc)
  22.     public:
  23.     virtual BOOL OnNewDocument();
  24.     //}}AFX_VIRTUAL
  25.  
  26.  
  27. // Implementation
  28. public:
  29.     virtual ~CEnrollDoc();
  30. #ifdef _DEBUG
  31.     virtual void AssertValid() const;
  32.     virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34.  
  35. protected:
  36.  
  37. // Generated message map functions
  38. protected:
  39.     //{{AFX_MSG(CEnrollDoc)
  40.         // NOTE - the ClassWizard will add and remove member functions here.
  41.         //    DO NOT EDIT what you see in these blocks of generated code !
  42.     //}}AFX_MSG
  43.     DECLARE_MESSAGE_MAP()
  44. };
  45.  
  46. /////////////////////////////////////////////////////////////////////////////
  47.